home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 10 / FM Towns Free Software Collection 10.iso / ms_dos / data / awkscrpt / test.asm < prev    next >
Assembly Source File  |  1995-02-11  |  85b  |  10 lines

  1.     org    100h
  2. start:
  3.     ld    a,1
  4.     ld    b,1
  5.     add    a,b
  6.     ld    (answer),a
  7.     ret
  8. answer:
  9.     db    0
  10.